home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / dasv10_.arj / MINIMUM.CPP < prev    next >
Encoding:
Text File  |  1993-08-13  |  206 b   |  12 lines

  1. // math.lib library function minimum()
  2.  
  3. long minimum(long num1,long num2,long num3)
  4. {
  5.     if (num1 < num2 && num1 < num3)
  6.         return num1;
  7.     else if (num2 < num3)
  8.         return num2;
  9.     else
  10.         return num3;
  11. }
  12.